.btn-acessar-curso {
    background: #00ffcc;
    color: #000;
    border: none;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: fit-content;
    transition: 0.3s;
    font-family: 'JetBrains Mono', monospace;
}
.btn-acessar-curso:hover {
    background: #00ccaa;
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}
.meus-cursos-btn-explorar {
    background: transparent;
    border: 2px solid #00ffcc;
    color: #00ffcc;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
}
.meus-cursos-btn-explorar:hover {
    background: #00ffcc;
    color: #000;
    box-shadow: 0 0 12px #00ffcc;
}